home *** CD-ROM | disk | FTP | other *** search
/ Gamers Delight 2 / Gamers Delight 2.iso / Aminet / game / wb / mui_game.lha / Install English next >
Text File  |  1994-08-02  |  1KB  |  80 lines

  1. ; Installation script for Schlawiner
  2.  
  3.  
  4. (transcript "Installing Schlawiner...")
  5.  
  6.  
  7. (set magicwb
  8.     (askbool
  9.       (prompt "Do you have installed MagicWB?\n")
  10.       (help "MagicWB © by Martin Huttenloher is the ultimative replacement - package\nfor the standard icons of the workbench.")
  11.       (choices "Yes" "No")
  12.       (default 1)
  13.     )
  14. )
  15.  
  16.  
  17. ; Copy Schlawiner and the icon
  18. (set name
  19.     (askdir
  20.        (prompt "Choose directory for Schlawiner.")
  21.       (help @askdir-help)
  22.       (default "SYS:Games")
  23.    )
  24. )
  25. (copyfiles
  26.     (source "Schlawiner")
  27.    (infos)
  28.    (dest name)
  29. )
  30. (if (= magicwb 1)
  31.    (
  32.       (copyfiles
  33.          (source "Icons/Schlawiner.info")
  34.          (infos)
  35.          (dest name)
  36.       )
  37.    )
  38.    (copyfiles
  39.       (source "Schlawiner.info")
  40.       (infos)
  41.       (dest name)
  42.    )
  43. )
  44.  
  45.  
  46. ; Copy the Online - Help
  47. (set helpdir
  48.     (askdir
  49.        (prompt "Choose directory for the Online - Help.")
  50.       (help @askdir-help)
  51.       (default "HELP:english")
  52.    )
  53. )
  54. (copyfiles
  55.     (source "Docs/English/Schlawiner.guide")
  56.    (infos)
  57.    (dest helpdir)
  58. )
  59. (if (= magicwb 1)
  60.    (
  61.       (copyfiles
  62.          (source "Icons/Schlawiner.guide.info")
  63.          (infos)
  64.          (dest helpdir)
  65.       )
  66.    )
  67.    (copyfiles
  68.       (source "Docs/English/Schlawiner.guide.info")
  69.       (infos)
  70.       (dest helpdir)
  71.    )
  72. )
  73.  
  74.  
  75. (set @default-dest name)
  76.  
  77.  
  78. (exit)
  79.  
  80.